home *** CD-ROM | disk | FTP | other *** search
/ Exploring Where & Why / Exploring Where & Why.iso / pc / Lib.cst / 00043_SpriteTools.ls < prev    next >
Encoding:
Text File  |  2004-07-11  |  1.2 KB  |  79 lines

  1. --
  2. -- SpriteTools
  3. --
  4. -- tools for handling sprites:
  5.  
  6.  
  7. property ancestor
  8. property snapFlag
  9.  
  10.  
  11. on new me
  12.   -- set constants:
  13.   
  14.   -- initialize the ancestor:
  15.   set ancestor = new (script "ListMgmt")
  16.   
  17.   -- do other initializations:
  18.   set snapFlag = TRUE
  19.   
  20.   return me
  21. end
  22.  
  23.  
  24. on destruct me
  25.   if objectP (ancestor) then destruct (ancestor)
  26.   set ancestor = 0
  27. end
  28.  
  29.  
  30.  
  31. on moveOffScreen me, spr
  32.   puppetSprite spr, TRUE
  33.   if the locv of sprite spr < 10000 then
  34.     set the locv of sprite spr to (the locv of sprite spr) + 10000
  35.   end if
  36. end
  37.  
  38.  
  39. on moveOnScreen me, spr
  40.   puppetSprite spr, TRUE
  41.   if the locv of sprite spr > 10000 then
  42.     set the locv of sprite spr to (the locv of sprite spr) - 10000
  43.   end if
  44. end
  45.  
  46.  
  47. -- snap the location of sprite spr to the location of sprite target:
  48.  
  49. on snapToPosition me, spr, target
  50.   if not snapFlag then return
  51.   set the loc of sprite spr to the loc of sprite target
  52. end
  53.  
  54. on snapOff me
  55.   set snapFlag = false
  56. end
  57.  
  58.  
  59.  
  60. -- return the number of sprites Diretor can use:
  61. -- 5.0 = 48
  62. -- 6.0 = 120
  63.  
  64. on numSprites me
  65.   --JCODE
  66.   --  global gTotalSprites
  67.   --  return gTotalSprites
  68.   return 120
  69.   --END JCODE
  70. end
  71.  
  72.  
  73. on spritesOff me
  74.   repeat with i = 1 to numSprites (me)
  75.     puppetSprite i, FALSE
  76.   end repeat
  77.   unloadCast (me)
  78. end
  79.